db2cffe46cf8f28994d17074391f24bc91969c5b,uportal-war/src/main/java/org/jasig/portal/portlet/registry/PortletEntityRegistryImpl.java,PortletEntityRegistryImpl,getPortletEntity,#IPortletEntityId#,100

Before Change


        if (InterimPortletEntityImpl.isInterimPortletEntityId(portletEntityId)) {
            portletEntity = new InterimPortletEntityImpl(portletEntityId);
        } else {
            portletEntity = this.portletEntityDao.getPortletEntity(portletEntityId);
        }

        return portletEntity;
    }
    
    /* (non-Javadoc)

After Change


            return new InterimPortletEntityImpl(portletEntityId);
        }
        
        return this.portletEntityDao.getPortletEntity(portletEntityId);
    }
    
    /* (non-Javadoc)